View Javadoc

1   /*
2    * Created on 7 déc. 2003
3    *
4    * To change the template for this generated file go to
5    * Window>Preferences>Java>Code Generation>Code and Comments
6    */
7   package net.sf.pmr.keopsframework.domain;
8   
9   import org.apache.commons.lang.enum.Enum;
10  
11  
12  /***
13   * @author Arnaud
14   *
15   * To change the template for this generated type comment go to
16   * Window>Preferences>Java>Code Generation>Code and Comments
17   */
18  public final class LoadStatusEnum extends Enum {
19  
20      /***
21       * The domain object is not loaded
22       */
23      public static final LoadStatusEnum GHOST = new LoadStatusEnum("GHOST");
24  
25      /***
26       * The domain object is loading
27       */
28      public static final LoadStatusEnum LOADING = new LoadStatusEnum("LOADING");
29  
30      /***
31       * The domain object is loaded
32       */
33      public static final LoadStatusEnum LOADED = new LoadStatusEnum("LOADED");
34  
35      /***
36       * The domain object is loaded
37       * @param loadStatus status of the domain object
38       */
39      private LoadStatusEnum(final String loadStatus) {
40          super(loadStatus);
41      }
42  
43  }